home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / cmds / gdb.new / gdb-4.0 / bfd / doc / startcom-p < prev    next >
Encoding:
Text File  |  1991-08-24  |  284 b   |  13 lines

  1. # sed script for preprocessing BFD header files
  2. # <start comment> activity:
  3. /^\/\*$/{
  4. N
  5. # Delete empty comment blocks
  6. /^\/\*\n\*\/ *$/d
  7. # Transpose <start comment><blank line>
  8. s/^\/\*\n *$/\
  9. \/*/
  10. # merge <start comment> on line by itself with following line
  11. s/^\/\*\n\(.*\)/\/* \1/
  12. }
  13.